Develop an ASP.NET page that displays a list of options with check boxes (Use CheckBoxList web control).
On clicking a button (web control), the page displays the selected options in a label control.
Develop a page that displays two text boxes and a button web control. The textboxes are used to capture number of rows and number of columns from user.
On clicking the button, generate a table with r
rows and c
columns. In each cell, display row, col values.
Optionally: Add features of borders and an image in each cell.
Configure the table appearance. This could also be performed in the .aspx
file, or in the create_Click
event handler.
TableRow
object.TableRow
in the Table.TableCell
object.Label
object. Display row, col numbers on label.TableCell
in TableRow
.Create a web page consisting of radio buttons such that when one is selected and the submit button is clicked, the radio button is removed from the list.